home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue63 / Debug / Demos / ScannerDemoUnit1.dfm < prev    next >
Encoding:
Text File  |  2000-10-01  |  1.1 KB  |  53 lines

  1. object ScannerDemoForm: TScannerDemoForm
  2.   Left = 259
  3.   Top = 123
  4.   Width = 696
  5.   Height = 480
  6.   Caption = 'Debug Scanner Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Memo: TMemo
  20.     Left = 0
  21.     Top = 0
  22.     Width = 688
  23.     Height = 434
  24.     Align = alClient
  25.     ScrollBars = ssVertical
  26.     TabOrder = 0
  27.   end
  28.   object MainMenu: TMainMenu
  29.     Left = 64
  30.     Top = 40
  31.     object FileMenu: TMenuItem
  32.       Caption = '&File'
  33.       object OpenItem: TMenuItem
  34.         Caption = '&Open'
  35.         OnClick = OpenItemClick
  36.       end
  37.       object N1: TMenuItem
  38.         Caption = '-'
  39.       end
  40.       object ExitItem: TMenuItem
  41.         Caption = 'E&xit'
  42.         OnClick = ExitItemClick
  43.       end
  44.     end
  45.   end
  46.   object OpenDialog: TOpenDialog
  47.     DefaultExt = '.EXE'
  48.     Filter = 'Executables|*.EXE|DLLs|*.DLL|TD32 Strip files|*.TDS'
  49.     Left = 112
  50.     Top = 48
  51.   end
  52. end
  53.